cd />> Place the catalog backup on the share via AFP, SMB, FTP, or Direct attached storage

>> ssh into the unit (where archiveXX is the name of your unit)  ( http://www.cache-a.com/ftpcommon/CATechBrief-CommandLine.pdf )

ssh root@archiveXX.local

>> Stop all services

service httpd stop

/etc/init.d/tapemgr stop

service mysqld stop

>> Navigate to the share directory on the sharesermy

cd /media/vtape/

>> Copy the catalog backup to the root level

mv 5310_catalog.tar /media/

>> navigate to the media

cd /media/

>> Expand the catalog (the name of you backup might be different, if you start typing '53' then press tab, it should autocomplete the rest for you.  You can also type the command ll (lowercase LL)to see what's in that directory)

tar xvf 5310_catalog.tar 

>> Check for error in the catalog

myisamchk -r /media/catalog/database/mysql/catalog/*.MYI

>> Enable the services back in reverse order

service mysqld start
ser
/etc/init.d/tapemgr start

service httpd start